home *** CD-ROM | disk | FTP | other *** search
/ Programming a Multiplayer FPS in DirectX / Programming a Multiplayer FPS in DirectX (Companion CD).iso / DirectX / dxsdk_oct2004.exe / dxsdk.exe / Documentation / DirectX9 / directx9_m.chm / directx / code / mailto.js < prev    next >
Encoding:
JavaScript  |  2004-09-30  |  1.1 KB  |  16 lines

  1.  
  2. // ****************************************************************************
  3. // *                        Feedback                                          *
  4. // ****************************************************************************
  5.  
  6. function sendfeedback(id,alias){
  7.     var url = location.href;
  8.     var title = document.all.tags("TITLE")[0].innerText;
  9.     var strBody = "%0d%0a%0d%0aThe DirectX documentation team appreciates your feedback! You can have a great impact on DirectX customers and end users worldwide! Please provide any suggestions you may have for the documentation, such as corrections or helpful information you think ought to be included. If you have more general questions not directly related to the documentation, please visit the MSDN DirectX Developer site instead at http://msdn.microsoft.com/directx."
  10.     //var browser = navigator.appName + " " + navigator.appVersion
  11.     location.href = "mailto:"+alias+"?subject=" + "DirectX Managed Docs Feedback:" + " (" + id+")" + "&body=Topic%20ID:%20" + id + "%0d%0aURL:%20" + url + strBody + "%0d%0a%0d%0aYour%20comments%20on%20this%20topic:%20%0d%0a%0d%0a";
  12. }
  13.  
  14.  
  15.  
  16.